home *** CD-ROM | disk | FTP | other *** search
- /* This file is part of the KDE libraries
- Copyright (C) 2000-2005 David Faure <faure@kde.org>
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License version 2 as published by the Free Software Foundation.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Library General Public License for more details.
-
- You should have received a copy of the GNU Library General Public License
- along with this library; see the file COPYING.LIB. If not, write to
- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- Boston, MA 02110-1301, USA.
- */
-
- #ifndef __kio_paste_h__
- #define __kio_paste_h__
-
- #include <qstring.h>
- #include <qmemarray.h>
- #include <kurl.h>
- class QWidget;
- class QMimeSource;
-
- // KDE4 TODO pass a parent widget to all methods that will display a message box
-
- namespace KIO {
- class Job;
- class CopyJob;
-
- /**
- * Pastes the content of the clipboard to the given destination URL.
- * URLs are treated separately (performing a file copy)
- * from other data (which is saved into a file after asking the user
- * to choose a filename and the preferred data format)
- *
- * @param destURL the URL to receive the data
- * @param move true to move the data, false to copy
- * @return the job that handles the operation
- * @see pasteData()
- */
- KIO_EXPORT Job *pasteClipboard( const KURL& destURL, bool move = false );
-
- /**
- * Pastes the given @p data to the given destination URL.
- * NOTE: This method is blocking (uses NetAccess for saving the data).
- * Please consider using pasteDataAsync instead.
- *
- * @param destURL the URL of the directory where the data will be pasted.
- * The filename to use in that directory is prompted by this method.
- * @param data the data to copy
- * @see pasteClipboard()
- */
- KIO_EXPORT void pasteData( const KURL& destURL, const QByteArray& data );
-
- /**
- * Pastes the given @p data to the given destination URL.
- * Note that this method requires the caller to have chosen the QByteArray
- * to paste before hand, unlike pasteClipboard and pasteMimeSource.
- *
- * @param destURL the URL of the directory where the data will be pasted.
- * The filename to use in that directory is prompted by this method.
- * @param data the data to copy
- * @see pasteClipboard()
- */
- KIO_EXPORT CopyJob *pasteDataAsync( const KURL& destURL, const QByteArray& data );
-
- /**
- * Pastes the given @p data to the given destination URL.
- * Note that this method requires the caller to have chosen the QByteArray
- * to paste before hand, unlike pasteClipboard and pasteMimeSource.
- *
- * @param destURL the URL of the directory where the data will be pasted.
- * The filename to use in that directory is prompted by this method.
- * @param data the data to copy
- * @param dialogText the text to show in the dialog
- * @see pasteClipboard()
- */
- KIO_EXPORT CopyJob *pasteDataAsync( const KURL& destURL, const QByteArray& data, const QString& dialogText ); // KDE4: merge with above
-
-
- /**
- * Save the given mimesource @p data to the given destination URL
- * after offering the user to choose a data format.
- * This is the method used when handling drops (of anything else than URLs)
- * onto kdesktop and konqueror.
- *
- * @param data the QMimeSource (e.g. a QDropEvent)
- * @param destURL the URL of the directory where the data will be pasted.
- * The filename to use in that directory is prompted by this method.
- * @param dialogText the text to show in the dialog
- * @param widget parent widget to use for dialogs
- * @param clipboard whether the QMimeSource comes from QClipboard. If you
- * use pasteClipboard for that case, you never have to worry about this parameter.
- *
- * @see pasteClipboard()
- *
- * @since 3.5
- */
- KIO_EXPORT CopyJob* pasteMimeSource( QMimeSource* data, const KURL& destURL,
- const QString& dialogText, QWidget* widget,
- bool clipboard = false );
-
- /**
- * Checks whether the clipboard contains any URLs.
- * @return true if not
- * Not used anymore, wrong method name, so it will disappear in KDE4.
- */
- KIO_EXPORT_DEPRECATED bool isClipboardEmpty();
-
- /**
- * Returns the text to use for the Paste action, when the application supports
- * pasting files, urls, and clipboard data, using pasteClipboard().
- * @return a string suitable for KAction::setText, or an empty string if pasting
- * isn't possible right now.
- *
- * @since 3.5
- */
- KIO_EXPORT QString pasteActionText();
- }
-
- #endif
-